* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --secondary: #0ea5e9;
  --secondary-dark: #0284c7;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --dark-lighter: #334155;
  --gray: #64748b;
  --gray-light: #94a3b8;
  --gray-lighter: #cbd5e1;
  --white: #f8fafc;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* UTILITIES */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: var(--gray-lighter);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--white);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}



/* HERO SECTION */
.hero {
  padding: 120px 0 100px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-icon {
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray-lighter);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  padding: 18px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 40px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-lighter);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  width: 400px;
  height: 300px;
  background: var(--dark-light);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.play-icon {
  font-size: 2rem;
  color: var(--white);
}

.video-info {
  text-align: center;
  color: var(--white);
}

.video-duration {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-lighter);
  margin-bottom: 8px;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--dark-light);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}

.card-icon {
  font-size: 2rem;
  color: var(--primary);
}

.card-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.card-content p {
  font-size: 0.8rem;
  color: var(--gray-lighter);
  line-height: 1.4;
}



/* VSL SECTION */
.vsl-section {
  padding: 100px 0;
  background: var(--dark-light);
}

.vsl-header {
  text-align: center;
  margin-bottom: 60px;
}

.vsl-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.vsl-header p {
  font-size: 1.2rem;
  color: var(--gray-lighter);
  max-width: 600px;
  margin: 0 auto;
}

.vsl-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Responsividade para mobile - vsl container */
@media (max-width: 768px) {
  .vsl-container {
    max-width: 100%;
    padding: 0 10px;
  }
}

.video-player {
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade para mobile - video player */
@media (max-width: 768px) {
  .video-player {
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .video-player {
    border-radius: 10px;
  }
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-thumbnail {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-light), var(--dark-lighter));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .video-thumbnail {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .video-thumbnail {
    height: 200px;
  }
}

.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: none;
  background: #000;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  /* Otimizações de performance */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.video-thumbnail video[style*="display: block"] {
  display: block !important;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b, #334155, #475569);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.poster-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.poster-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.poster-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.poster-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

/* Responsividade para mobile - poster content */
@media (max-width: 768px) {
  .poster-content h3 {
    font-size: 1.5rem;
  }
  
  .poster-content p {
    font-size: 1rem;
  }
  
  .poster-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .poster-content h3 {
    font-size: 1.2rem;
  }
  
  .poster-content p {
    font-size: 0.9rem;
  }
  
  .poster-icon {
    font-size: 2.5rem;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Indicador de carregamento do vídeo */
.video-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  border-radius: 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.video-loading p {
  color: white;
  font-size: 1rem;
  margin: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 3;
}

/* Responsividade para mobile - play overlay */
@media (max-width: 768px) {
  .play-overlay {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .play-overlay {
    width: 60px;
    height: 60px;
  }
}

.play-icon-large {
  font-size: 2.5rem;
  color: var(--white);
}

/* Responsividade para mobile - play icon */
@media (max-width: 768px) {
  .play-icon-large {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .play-icon-large {
    font-size: 1.5rem;
  }
}

.video-meta {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

/* Responsividade para mobile - video meta */
@media (max-width: 768px) {
  .video-meta {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .video-meta {
    bottom: 10px;
    right: 10px;
    gap: 6px;
  }
}

.video-time, .video-quality {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-info-panel {
  padding: 30px;
}

/* Responsividade para mobile - video info panel */
@media (max-width: 768px) {
  .video-info-panel {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .video-info-panel {
    padding: 15px;
  }
}

.video-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

/* Responsividade para mobile - video title */
@media (max-width: 768px) {
  .video-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

.video-description p {
  color: var(--gray-lighter);
  margin-bottom: 15px;
  font-size: 1rem;
}

.video-description ul {
  list-style: none;
  padding: 0;
}

.video-description li {
  color: var(--gray-lighter);
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section.alt {
  background: var(--dark-light);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-lighter);
  max-width: 600px;
  margin: 0 auto;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--dark-light);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(16, 185, 129, 0.3);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
}

.benefit-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 700;
}

.benefit-content p {
  color: var(--gray-lighter);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 1rem;
}

.benefit-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  font-weight: 500;
}

/* PROCESS TIMELINE */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 80px;
  bottom: -60px;
  width: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 700;
}

.timeline-content p {
  color: var(--gray-lighter);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.timeline-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature {
  color: var(--gray-lighter);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TESTIMONIALS SHOWCASE */
.testimonials-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.testimonial-video {
  text-align: center;
}

.video-thumbnail-large {
  width: 100%;
  height: 300px;
  background: var(--dark-light);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-thumbnail-large:hover {
  transform: scale(1.02);
}

.video-thumbnail-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.testimonial-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.testimonial-role {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-rating {
  color: var(--primary);
  font-size: 1.2rem;
}

.testimonial-quote blockquote {
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -20px;
  left: -20px;
  opacity: 0.3;
}

.testimonial-results {
  display: flex;
  align-items: center;
  gap: 20px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-before {
  color: var(--gray-light);
  font-weight: 500;
}

.result-arrow {
  color: var(--primary);
  font-weight: bold;
}

.result-after {
  color: var(--white);
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--dark-light);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.3);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-meta span {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}

.rating {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-card p {
  color: var(--gray-lighter);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-stats span {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* GUARANTEE SECTION */
.guarantee-section {
  padding: 100px 0;
  background: var(--gradient-dark);
  text-align: center;
}

.guarantee-content {
  max-width: 700px;
  margin: 0 auto;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.guarantee-icon {
  font-size: 1rem;
}

.guarantee-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.guarantee-content p {
  font-size: 1.2rem;
  color: var(--gray-lighter);
  margin-bottom: 40px;
  line-height: 1.6;
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.guarantee-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-lighter);
  font-size: 1rem;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.2rem;
}

/* FAQ GRID */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
  padding: 30px;
  background: var(--dark-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--gray-lighter);
  line-height: 1.6;
  font-size: 1rem;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.3rem;
  color: var(--gray-lighter);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-offer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.price-container {
  text-align: center;
  position: relative;
}

.original-price {
  font-size: 1.2rem;
  color: var(--gray-light);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.discount-badge {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
}

.offer-timer {
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.timer-text {
  color: var(--gray-lighter);
  font-size: 1rem;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.countdown {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 60px;
}

.time-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  min-width: 50px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.time-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 500;
  text-align: center;
}

.cta-buttons {
  margin-bottom: 40px;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 24px 48px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  margin-bottom: 20px;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.cta-guarantee {
  margin-bottom: 30px;
}

.guarantee-text {
  color: var(--gray-lighter);
  font-size: 1rem;
  font-weight: 500;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-lighter);
  font-size: 1rem;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--dark-light);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray-lighter);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column a {
  color: var(--gray-lighter);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.disclaimer {
  color: var(--gray-light) !important;
  font-size: 0.8rem !important;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-lighter);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .hero .container {
    gap: 60px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header .container {
    flex-direction: column;
    gap: 15px;
    padding: 10px 15px;
  }
  
  .nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav a {
    font-size: 0.9rem;
  }
  
  .btn-header {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  

  
  .hero {
    padding: 100px 0 80px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .hero-trust {
    margin-top: 30px;
  }
  
  .trust-badges {
    justify-content: center;
    gap: 15px;
  }
  
  .hero-image {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }
  
  .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    max-width: none;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .section-header p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .benefits-grid {
    gap: 20px;
  }
  
  .benefit-card {
    padding: 30px;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .timeline-item::after {
    display: none;
  }
  
  .testimonial-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .testimonials-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .cta-offer {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .price-container {
    order: 1;
  }
  
  .offer-timer {
    order: 2;
    max-width: 250px;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-primary-large {
    padding: 20px 40px;
    font-size: 1.1rem;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Contador responsivo para mobile */
  .countdown {
    gap: 10px;
    justify-content: center;
    width: 100%;
  }
  
  .time-unit {
    min-width: 50px;
    gap: 3px;
  }
  
  .time-number {
    font-size: 1.8rem;
    min-width: 40px;
  }
  
  .time-label {
    font-size: 0.7rem;
  }
  
  .timer-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
    padding: 0 5px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-image {
    height: 200px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .section-header p {
    font-size: 1rem;
    padding: 0 5px;
  }
  
  .benefit-card {
    padding: 25px;
  }
  
  .benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .benefit-content p {
    font-size: 0.95rem;
  }
  
  .timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .timeline-content p {
    font-size: 0.95rem;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .btn-primary-large {
    padding: 18px 32px;
    font-size: 1rem;
  }
  
  .countdown {
    gap: 10px;
  }
  
  .time-number {
    font-size: 1.5rem;
  }
  
  .time-label {
    font-size: 0.7rem;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-links {
    gap: 25px;
  }
  
  /* Contador para smartphones pequenos */
  .countdown {
    gap: 8px;
  }
  
  .time-unit {
    min-width: 45px;
  }
  
  .time-number {
    font-size: 1.6rem;
    min-width: 35px;
  }
  
  .time-label {
    font-size: 0.65rem;
  }
  
  .timer-text {
    font-size: 0.85rem;
  }
}


